Jeff Newmiller
April 2, 2019
igraph, but IMO simplergrViz(
'digraph sample1 {
A -> B
}')grViz(
'digraph sample2 {
Boss -> Me
Boss -> "Co-worker"
}')grViz(
'digraph sample1 {
rankdir="LR"
A [ shape = diamond ]
// Transparency (alpha) using #rrggbbaa last byte
E [ fillcolor = "#0000FF80"; style=filled ]
A -> B [ label = "start" ]
B -> { C D }
{ C D } -> E
}')Default linear layout:
“Repelling” spacing between nodes: graph [layout = neato]
Circular “ranks”: graph [layout = twopi]
Useful for showing interactions between things/people (from documentation).